home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
CU Amiga Super CD-ROM 1
/
CU Amiga Magazine CD-ROM Special Edition (1995)(EMAP Images)(GB)[Issue 1995-11].iso
/
Aminet
/
comm
/
tcp
/
archie38_1.lha
/
archie-1.4
/
regex.h
< prev
next >
Wrap
C/C++ Source or Header
|
1995-01-04
|
624b
|
24 lines
/*
* regex.h : External defs for Ozan Yigit's regex functions, for systems
* that don't have them builtin. See regex.c for copyright and other
* details.
*
* Note that this file can be included even if we're linking against the
* system routines, since the interface is (deliberately) identical.
*
* George Ferguson, ferguson@cs.rochester.edu, 11 Sep 1991.
*/
#if defined(_AUX_SOURCE) || defined(USG)
/* Let them use ours if they wish. */
# ifndef NOREGEX
extern char *regcmp();
extern char *regex();
#define re_comp regcmp
#define re_exec regex
# endif
#else
extern char *re_comp();
extern int re_exec();
#endif